/* Table Container */
.table-container {
    width: 100%;
    max-width: 1200px;
    margin: 30px auto;
    padding: 0 15px;
}

/* Table Styling */
#cart_table {
    width: 70%;
    margin: auto;
    border-collapse: collapse;
    background: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border-radius: 8px;
    overflow: hidden;
}

/* Table Header */
#cart_table thead {
    background-color: #2c3e50;
}

#cart_table th {
    color: white;
    padding: 15px;
    text-align: left;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
}

/* Table Body */
#cart_table tbody tr {
    border-bottom: 1px solid #eee;
    transition: background-color 0.2s;
}

#cart_table tbody tr:hover {
    background-color: #f8f9fa;
}

#cart_table td {
    padding: 15px;
    text-align: left;
    vertical-align: middle;
    color: #333;
    font-size: 14px;
}

/* Image Column */
#cart_table td:first-child {
    width: 120px;
}

#cart_table img {
    border-radius: 6px;
    display: block;
    box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}

/* Product Name */
#cart_table td:nth-child(2) {
    font-weight: 600;
    color: #2c3e50;
}

/* Color */
#cart_table td:nth-child(3) {
    color: #7f8c8d;
}

/* Price */
#cart_table td:nth-child(4) {
    font-weight: 700;
    color: #2c3e50;
    font-size: 16px;
}

/* Quantity */
#cart_table td:nth-child(5) {
    font-weight: 600;
    color: #0d7520;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .table-container {
        padding: 0 10px;
    }
    
    #cart_table th,
    #cart_table td {
        padding: 10px 8px;
        font-size: 13px;
    }
    
    #cart_table img {
        width: 70px !important;
    }
    
    #cart_table td:first-child {
        width: 80px;
    }
}